home *** CD-ROM | disk | FTP | other *** search
/ Software of the Month Club 2000 October / Software of the Month - Ultimate Collection Shareware 277.iso / pc / PROGRAMS / UTILITY / WINLINUX / DATA1.CAB / programs_-_include / LINUX / MINIX_FS.{1G < prev    next >
Text File  |  1999-09-17  |  586b  |  27 lines

  1. #ifndef _MINIX_FS_SB
  2. #define _MINIX_FS_SB
  3.  
  4. /*
  5.  * minix super-block data in memory
  6.  */
  7. struct minix_sb_info {
  8.             unsigned long s_ninodes;
  9.             unsigned long s_nzones;
  10.             unsigned long s_imap_blocks;
  11.             unsigned long s_zmap_blocks;
  12.             unsigned long s_firstdatazone;
  13.             unsigned long s_log_zone_size;
  14.             unsigned long s_max_size;
  15.             int s_dirsize;
  16.             int s_namelen;
  17.             int s_link_max;
  18.             struct buffer_head ** s_imap;
  19.             struct buffer_head ** s_zmap;
  20.             struct buffer_head * s_sbh;
  21.             struct minix_super_block * s_ms;
  22.             unsigned short s_mount_state;
  23.             unsigned short s_version;
  24. };
  25.  
  26. #endif
  27.